home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1999 January / PC Plus Super CD No55a (PCP-147A-1-99) (Disc 1) (1998).iso / full / cbuilder / DATA.Z / FILTER.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-13  |  1.1 KB  |  26 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #include <vcl.h>
  7. #pragma hdrstop
  8. //---------------------------------------------------------------------------
  9. USEFORM("FILTER1.cpp", fmFilterFrm);
  10. USEFORM("CUSTVIEW.cpp", fmCustView);
  11. USEDATAMODULE("DM.cpp", DM1);
  12. USEFORM("ABOUT.cpp", fmAboutBox);
  13. USERES("filter.res");
  14. //---------------------------------------------------------------------
  15. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  16. {
  17.     Application->Initialize();
  18.     Application->CreateForm(__classid(TDM1), &DM1);
  19.     Application->CreateForm(__classid(TfmCustView), &fmCustView);
  20.     Application->CreateForm(__classid(TfmFilterFrm), &fmFilterFrm);
  21.     Application->Run();
  22.  
  23.     return 0;
  24. }
  25. //---------------------------------------------------------------------------
  26.